home *** CD-ROM | disk | FTP | other *** search
/ Alumni Directory: Alumni…oday Phi Delta Theta 2015 / Alumni Today Phi Delta Theta 2015.iso / pc / Help / whdata / whftdata.js next >
Encoding:
JavaScript  |  2005-09-19  |  458 b   |  25 lines

  1. //    WebHelp 5.10.001
  2. var gTEA = new Array();
  3. function aTE(sTopicTitle, sTopicURL)
  4. {
  5.     var len = gTEA.length;
  6.     gTEA[len] = new topicEntry(sTopicTitle, sTopicURL);
  7. }
  8.  
  9. function topicEntry(sTopicTitle, sTopicURL)
  10. {
  11.     this.sTopicTitle = sTopicTitle;
  12.     this.sTopicURL = sTopicURL;
  13. }
  14.  
  15. function window_OnLoad()
  16. {
  17.     if (parent && parent != this) {
  18.         if (parent.putFtsTData) 
  19.         {
  20.             parent.putFtsTData(gTEA);
  21.         }
  22.     }
  23. }
  24.  
  25. window.onload = window_OnLoad;